home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / bbs / sfame120.zip / SCRIPTS.ZIP / SCRIPT3.SCR < prev    next >
Text File  |  1995-01-07  |  712b  |  26 lines

  1. ;Script to request a file through FTP
  2. :START
  3. DISPLAY ""
  4. ASK "Enter the address of this file: " 1
  5. ASK "Enter the directory of this file: " 2
  6. ASK "Enter file name: " 3
  7. DISPLAY ""
  8. DISPLAYANSWER "Address of file:   " 1
  9. DISPLAYANSWER "Directory of file: " 2
  10. DISPLAYANSWER "File name:         " 3
  11. DISPLAY ""
  12. GETCHOICE "Is the above information correct <Y/n>? " YN 4
  13. IF 4 "N"
  14. GOTO START
  15. ENDIF
  16. ;Write answers to message. Don't forget space (" ") between text and answer.
  17. ;Variable 0 below is the users address
  18. WRITEANSWER "reply " 0
  19. WRITEANSWER "connect " 1
  20. WRITEANSWER "binary"
  21. WRITEANSWER "uuencode"
  22. WRITEANSWER "chunksize 50000"
  23. WRITEANSWER "chdir " 2
  24. WRITEANSWER "get " 3
  25. WRITEANSWER "quit"
  26.